Home Screen
fun HomeScreen(modifier: Modifier = Modifier, openDrawer: () -> Unit, onNavigateToMoodEvaluation: () -> Unit, onNavigateToJournal: () -> Unit, onNavigateToChatbot: () -> Unit, onNavigateToAnalytics: () -> Unit)
Composable for the Home screen, which serves as the main dashboard. It includes navigation options to different sections of the app such as mood evaluation, journaling, chatbot, and analytics.
Parameters
modifier
Modifier to be applied to the composable.
open Drawer
A lambda function to open the navigation drawer.
on Navigate To Mood Evaluation
A lambda function for navigating to the mood evaluation screen.
on Navigate To Journal
A lambda function for navigating to the journal screen.
on Navigate To Chatbot
A lambda function for navigating to the chatbot screen.
on Navigate To Analytics
A lambda function for navigating to the analytics screen.